home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / gfx / misc / gnuplot-src.lha / gnuplot-3.7.1src / gnuplot-3.7.1.lha / gnuplot-3.7.1 / docs / psdoc / Makefile next >
Encoding:
Makefile  |  1999-08-19  |  273 b   |  21 lines

  1. #
  2. # Create ps_symbols.ps
  3. #
  4.  
  5. top_srcdir=../..
  6.  
  7. all: ps_symbols.ps
  8.  
  9. ps_symbols.ps: ps_symbols.gpi
  10.     @if test -f $(top_srcdir)/gnuplot ; then \
  11.         $(top_srcdir)/gnuplot ps_symbols.gpi ; \
  12.     else \
  13.         gnuplot ps_symbols.gpi ; \
  14.     fi
  15.  
  16. clean:
  17.     -rm -f ps_symbols.ps
  18.  
  19. distclean: clean
  20.  
  21.